nem0 / LumixEngine

3D C++ Game Engine - yet another open source game engine
MIT License
3.51k stars 396 forks source link

Replace *printf functions with safer alternative #223

Closed nem0 closed 10 years ago

nem0 commented 10 years ago

const char* path; sprintf(cmd_line, "scripts\compile.bat %s", path);

refactor path -> Lumix::Path path; It causes no compiler warning/error

nem0 commented 10 years ago

duplicate #225