1. Run OptionsEditor.exe. It could be that your configuration is set to go to a resolution that is not supported by your video card or monitor.
2. Get the latest drivers for your video card / monitor.
__________________
namespace retval { template <class T> class ReturnValueGen { private: T x; public: ReturnValueGen() { x = 0; }; T& Generator() { return x; }; }; } int main() { retval::ReturnValueGen<int> retvalue; return retvalue.Generator(); }
C++ is wonderful.
|