FIX: Ya inicia la sesión online correctamente tras cambiar el JailerID

This commit is contained in:
2023-09-24 10:02:03 +02:00
parent 26f7cf2a37
commit 3e7aeeedbf
3 changed files with 54 additions and 23 deletions

View File

@@ -25,6 +25,7 @@ private:
Asset *asset; // Objeto con los ficheros de recursos
options_t *options; // Puntero a las opciones del juego
Screen *screen; // Objeto encargado de dibujar en pantalla
Lang *lang; // Objeto para gestionar los textos en diferentes idiomas
SDL_Event *eventHandler; // Manejador de eventos
SDL_Renderer *renderer; // El renderizador de la ventana
SDL_Texture *textTexture; // Textura para dibujar el texto
@@ -70,7 +71,7 @@ private:
public:
// Constructor
EnterID(SDL_Renderer *renderer, Screen *screen, Asset *asset, options_t *options, section_t *section);
EnterID(SDL_Renderer *renderer, Screen *screen, Asset *asset, Lang *lang, options_t *options, section_t *section);
// Destructor
~EnterID();