enginmanap / limonEngine

3D FPS game engine with full dynamic lighting and shadows
http://www.limonengine.com
GNU Lesser General Public License v3.0
580 stars 57 forks source link

Small error in the "src/main.cpp" file #113

Closed brightprogrammer closed 4 years ago

brightprogrammer commented 4 years ago

there is a small error in the "src/main.cpp" file. In line 148, 140 & 152 of the main.cpp file, you are using something like "std::__cxx11::string" which raises an error while building the project. I tried replacing it with "std::string" and then it compiled!

I don't even know whether this is an issue or not, I am new to all these things. I just think that you are doing a very great job!

enginmanap commented 4 years ago

Hi!

It is definetely an error. My IDE adds these on refactors, and sometimes I miss them and commit like that, sorry. I don't have a pc at hand, but I would accept a PR if you already fixed it. If not I will fix it in a couple of days.

enginmanap commented 4 years ago

Fixed by #114 thanks @brightprogrammer !