OldSchoolHack

Registrieren / Anmelden Deutsch

Part of the menu disappears...

icon Thema: Part of the menu disappears...

Anmeldungsdatum: Mai 2014

Beiträge: 9

yes, but no changes, menu disappears.
to make it work i made temp solution (and yes, without this code textures skill disappears, also sometimes alpha(color) is disabled ):

TEXT Code:
  1. Application* Application::Instance(bool new_)
  2. {
  3. if(new_)
  4. {
  5. delete instance;
  6. instance = nullptr;
  7. }
  8. if(instance == nullptr)
  9. instance = new Application();
  10. return instance;
  11. }