dungeon_crawler

diff prototype/src/cmdcon.cc @ 25:527fede30057

- fixed sphere rendering (PointLight::draw) - added config argument options - fixed macosx compilation
author John Tsiombikas <nuclear@member.fsf.org>
date Sat, 25 Aug 2012 02:16:08 +0300
parents e122ba214ee1
children 21999ef6636b
line diff
     1.1 --- a/prototype/src/cmdcon.cc	Thu Aug 23 18:03:11 2012 +0300
     1.2 +++ b/prototype/src/cmdcon.cc	Sat Aug 25 02:16:08 2012 +0300
     1.3 @@ -60,7 +60,7 @@
     1.4  
     1.5  	case '\b':
     1.6  		if(!cmdline.empty()) {
     1.7 -			cmdline.erase(cmdline.back());
     1.8 +			cmdline.pop_back();	// <-- C++11
     1.9  		}
    1.10  		break;
    1.11