mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-03 09:23:37 +00:00
asigna_memoria -> allocMemory
svn-id: r32002
This commit is contained in:
parent
7926d4dc8a
commit
0e80f6ed7b
@ -160,7 +160,7 @@ int DrasculaEngine::go() {
|
||||
ald = NULL;
|
||||
sku = NULL;
|
||||
|
||||
asigna_memoria();
|
||||
allocMemory();
|
||||
|
||||
hay_sb = 1;
|
||||
con_voces = 0;
|
||||
@ -260,7 +260,7 @@ void DrasculaEngine::salir_al_dos(int r) {
|
||||
free(VGA);
|
||||
}
|
||||
|
||||
void DrasculaEngine::asigna_memoria() {
|
||||
void DrasculaEngine::allocMemory() {
|
||||
dir_zona_pantalla = (byte *)malloc(64000);
|
||||
assert(dir_zona_pantalla);
|
||||
dir_dibujo1 = (byte *)malloc(64000);
|
||||
|
@ -353,7 +353,7 @@ public:
|
||||
|
||||
Audio::SoundHandle _soundHandle;
|
||||
|
||||
void asigna_memoria();
|
||||
void allocMemory();
|
||||
void libera_memoria();
|
||||
void salir_al_dos(int r);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user