1
0
mirror of https://github.com/td512/re3.git synced 2026-01-29 13:11:39 +00:00

got rid of upper case types

This commit is contained in:
aap
2019-06-17 00:16:38 +02:00
parent e8c5f7da52
commit 0add48abf5
49 changed files with 701 additions and 708 deletions

View File

@@ -1,7 +1,7 @@
#include "common.h"
#include "AudioScriptObject.h"
void PlayOneShotScriptObject(UInt8 id, CVector const &pos)
void PlayOneShotScriptObject(uint8 id, CVector const &pos)
{
((void (__cdecl *)(UInt8, CVector const &))0x57C5F0)(id, pos);
((void (__cdecl *)(uint8, CVector const &))0x57C5F0)(id, pos);
}