@@ -127,18 +127,19 @@ void ofInit(){
127127 signal (SIGABRT, &ofSignalHandler); // abort signal
128128#endif
129129
130- of::priv::initutils ();
131-
132- #ifdef WIN32_HIGH_RES_TIMING
133- timeBeginPeriod (1 ); // ! experimental, sets high res time
134- // you need to call timeEndPeriod.
135- // if you quit the app other than "esc"
136- // (ie, close the console, kill the process, etc)
137- // at exit wont get called, and the time will
138- // remain high res, that could mess things
139- // up on your system.
140- // info here:http://www.geisswerks.com/ryan/FAQS/timing.html
141- #endif
130+ of::priv::initutils ();
131+ of::priv::initfileutils ();
132+
133+ #ifdef WIN32_HIGH_RES_TIMING
134+ timeBeginPeriod (1 ); // ! experimental, sets high res time
135+ // you need to call timeEndPeriod.
136+ // if you quit the app other than "esc"
137+ // (ie, close the console, kill the process, etc)
138+ // at exit wont get called, and the time will
139+ // remain high res, that could mess things
140+ // up on your system.
141+ // info here:http://www.geisswerks.com/ryan/FAQS/timing.html
142+ #endif
142143
143144#ifdef TARGET_LINUX
144145 if (std::locale ().name () == " C" ){
@@ -173,7 +174,7 @@ void ofSetMainLoop(shared_ptr<ofMainLoop> newMainLoop) {
173174
174175// --------------------------------------
175176int ofRunApp (ofBaseApp * OFSA){
176- mainLoop ()->run (std::move ( shared_ptr<ofBaseApp>(OFSA) ));
177+ mainLoop ()->run (shared_ptr<ofBaseApp>(OFSA));
177178 auto ret = ofRunMainLoop ();
178179#if !defined(TARGET_ANDROID) && !defined(TARGET_OF_IOS)
179180 ofExitCallback ();
0 commit comments