mirror of
https://github.com/libretro/RetroArch
synced 2025-01-30 12:32:52 +00:00
Update libretroDB
This commit is contained in:
parent
017804e4e8
commit
bf16defeb3
9
libretrodb/.gitignore
vendored
9
libretrodb/.gitignore
vendored
@ -1,9 +0,0 @@
|
||||
*.swp
|
||||
*~
|
||||
*.o
|
||||
*.pyc
|
||||
rmsgpack_test
|
||||
lua_converter
|
||||
rarchdb_tool
|
||||
testlib.so
|
||||
*.uncrustify
|
@ -111,7 +111,11 @@ static int stub_read_uint(
|
||||
void * data
|
||||
){
|
||||
stub_state_pre_print(data);
|
||||
printf("%lu", value);
|
||||
#ifdef _WIN32
|
||||
printf("%I64u", (unsigned long long)value);
|
||||
#else
|
||||
printf("%llu", (unsigned long long)value);
|
||||
#endif
|
||||
stub_state_post_print(data);
|
||||
return 0;
|
||||
}
|
||||
@ -127,7 +131,11 @@ static int stub_read_int(
|
||||
void * data
|
||||
){
|
||||
stub_state_pre_print(data);
|
||||
printf("%ld", value);
|
||||
#ifdef _WIN32
|
||||
printf("%I64d", (signed long long)value);
|
||||
#else
|
||||
printf("%lld", (signed long long)value);
|
||||
#endif
|
||||
stub_state_post_print(data);
|
||||
return 0;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user