1
0
mirror of synced 2024-11-14 23:07:36 +01:00

APM3 Improve GameVersion emulation

APM3 Improve GameVersion emulation
This commit is contained in:
Nico Giansanti 2021-07-15 19:57:54 +03:00
parent 05819bf683
commit 97fb7254d0

View File

@ -444,6 +444,8 @@ GameVersion* System_getGameVersion()
if (_gameVersion == nullptr) if (_gameVersion == nullptr)
{ {
_gameVersion = (GameVersion*)malloc(sizeof(GameVersion)); _gameVersion = (GameVersion*)malloc(sizeof(GameVersion));
_gameVersion->Minor = 0;
_gameVersion->Major = 1;
} }
return _gameVersion; return _gameVersion;
} }
@ -582,7 +584,7 @@ int apmGamepadUpdate()
static void HookAPM3() static void HookAPM3()
{ {
wcscpy(ServerName, L"TeknoParrot Server Hi!"); wcscpy(ServerName, L"TeknoParrot Server Hi!");
wcscpy(LinkServerName, L"TeknoParrot Link Server Hi!"); wcscpy(LinkServerName, L"localhost");
wcscpy(LocationNickName, L"Flatty"); wcscpy(LocationNickName, L"Flatty");
wcscpy(LocationName, L"Flatearth"); wcscpy(LocationName, L"Flatearth");
wcscpy(RegionName, L"Santaland"); wcscpy(RegionName, L"Santaland");