1
0

Merge pull request #29 from coltongit/patch-1

Fix save corruption in some 64-bit builds
Этот коммит содержится в:
Vinícius R. Miguel 2020-05-09 21:17:15 -03:00 коммит произвёл GitHub
родитель 7a81769abc 1c86dca581
Коммит b43313974c
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23

Просмотреть файл

@ -306,7 +306,7 @@ void rendering_init(void) {
}
void config_gfx_pool(void) {
gGfxPool = &gGfxPools[gGlobalTimer % 2];
gGfxPool = &gGfxPools[gGlobalTimer % GFX_NUM_POOLS];
set_segment_base_addr(1, gGfxPool->buffer);
gGfxSPTask = &gGfxPool->spTask;
gDisplayListHead = gGfxPool->buffer;