MantisBT - Zandronum
View Issue Details
0000899Zandronum[All Projects] Bugpublic2012-06-25 13:002018-09-30 19:53
Dusk 
Dusk 
lowminoralways
closedfixed 
1.0-beta 
1.0 
0000899: GCC warnings
I went over and fixed the Zandronum-specific GCC warnings:
'https://bitbucket.org/CrimsonDusk/neurosphere/changeset/43a2978b244a [^]'
No tags attached.
Issue History
2012-06-25 13:00DuskNew Issue
2012-06-25 13:00DuskStatusnew => assigned
2012-06-25 13:00DuskAssigned To => Dusk
2012-06-25 13:00DuskStatusassigned => needs review
2012-06-26 11:37Edward-sanNote Added: 0003853
2012-06-26 11:37Edward-sanNote Edited: 0003853bug_revision_view_page.php?bugnote_id=3853#r2106
2012-06-26 13:22DuskNote Added: 0003854
2012-06-26 20:34Torr SamahoNote Added: 0003855
2012-06-26 20:35Torr SamahoStatusneeds review => resolved
2012-06-26 20:35Torr SamahoFixed in Version => 1.0
2012-06-26 20:35Torr SamahoResolutionopen => fixed
2018-09-30 19:53Blzut3Statusresolved => closed

Notes
(0003853)
Edward-san   
2012-06-26 11:37   
Great! You anticipated me :D

btw, about the whitespace thing in cl_main.cpp, doesn't "\0" work?

(0003854)
Dusk   
2012-06-26 13:22   
Whitespace came first to mind. :v
(0003855)
Torr Samaho   
2012-06-26 20:34   
Patch pulled.

Just a remark for the future, please use C++ casts instead of C casts if you need to cast something, i.e. static_cast<int>(i) instead of (int)i. It's much easier to accidentally mess up things with C casts.