Ce site fonctionne mieux avec JavaScript.
Accueil
Aide
Connexion
lolengine
/
lol
miroir de
https://github.com/lolengine/lol
Suivre
1
Ajouter aux favoris
0
Bifurcation
0
Code
Tickets
0
Versions
0
Wiki
Activité
Parcourir la source
Print error reports before panicking when asset loads fail.
legacy
Sam Hocevar
sam
il y a 14 ans
Parent
72dbe887c5
révision
87ed8cdf52
3 fichiers modifiés
avec
15 ajouts
et
0 suppressions
Vue séparée
Option de Diff
Voir les Statistiques
Télécharger le Fichier Patch
Télécharger le Fichier des Différences
+3
-0
src/font.cpp
+9
-0
src/sample.cpp
+3
-0
src/tileset.cpp
+ 3
- 0
src/font.cpp
Voir le fichier
@@ -61,6 +61,9 @@ Font::Font(char const *path)
if (!data->img)
{
#if !FINAL_RELEASE
fprintf(stderr, "ERROR: could not load %s\n", path);
#endif
SDL_Quit();
exit(1);
}
+ 9
- 0
src/sample.cpp
Voir le fichier
@@ -15,6 +15,7 @@
#include <cstdlib>
#include <cmath>
#include <SDL.h>
#include <SDL_mixer.h>
#include "core.h"
@@ -41,6 +42,14 @@ Sample::Sample(char const *path)
{
data->name = strdup(path);
data->chunk = Mix_LoadWAV(path);
if (!data->chunk)
{
#if !FINAL_RELEASE
fprintf(stderr, "ERROR: could not load %s\n", path);
#endif
SDL_Quit();
exit(1);
}
}
Sample::~Sample()
+ 3
- 0
src/tileset.cpp
Voir le fichier
@@ -67,6 +67,9 @@ TileSet::TileSet(char const *path, int w, int h, float dilate)
if (!data->img)
{
#if !FINAL_RELEASE
fprintf(stderr, "ERROR: could not load %s\n", path);
#endif
SDL_Quit();
exit(1);
}
Écrire
Aperçu
Chargement…
Annuler
Enregistrer