00001 // Copyright 2002 Kenneth Guy, 00002 // 00003 // You are free to take the source and do as you wish with it. 00004 // However it would be nice if you let me know if the code was useful 00005 // to you and give me an acknowledgement if you use a significant portion 00006 // of the code in an application. 00007 // 00008 // TGamePanics.cpp 00009 00015 #include <e32std.h> 00016 00017 #include "TGamePanics.h" 00018 00021 void TGamePanics::Panic(TGamePanicNo aReason) { 00022 _LIT(KPanic,"Game"); 00023 User::Panic(KPanic,aReason); 00024 }