From c635a27722d8ca06173f06f30bebb202e9cf9c6b Mon Sep 17 00:00:00 2001 From: kaetemi Date: Wed, 13 Nov 2019 11:55:54 +0800 Subject: [PATCH] Remove unused sheet init --- code/snowballs2/client/src/snowballs_client.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/code/snowballs2/client/src/snowballs_client.cpp b/code/snowballs2/client/src/snowballs_client.cpp index 28f957589..74f73c564 100644 --- a/code/snowballs2/client/src/snowballs_client.cpp +++ b/code/snowballs2/client/src/snowballs_client.cpp @@ -302,8 +302,6 @@ void initCore() LoadedCore = true; // Seed the randomizer srand(uint(time(0))); - // Sheet Id - CSheetId::initWithoutSheet(); // Temporary for sound // Load configuration file, set paths, extension remapping CConfiguration::init(); // Load language file @@ -524,8 +522,6 @@ void releaseCore() CInternationalization::release(); // Release the configuration CConfiguration::release(); - // Release sheet id - CSheetId::uninit(); // Temporary for sound } }