mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-06 10:58:01 +00:00
Fix MSVC compilation (cast const away explicitly).
Patch by Kerbox. svn-id: r40469
This commit is contained in:
parent
565c23b601
commit
5f3938d615
@ -924,7 +924,7 @@ static int c_hexgrep(EngineState *s, const Common::Array<cmd_param_t> &cmdParams
|
||||
int i, seeklen, resnr, resmax;
|
||||
unsigned char *seekstr = NULL;
|
||||
Resource *script = NULL;
|
||||
char *dot = strchr(cmdParams[0].str, '.');
|
||||
char *dot = (char *)strchr(cmdParams[0].str, '.');
|
||||
ResourceType restype;
|
||||
|
||||
if (NULL == s) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user