Bu web sitesi JavaScript ile daha iyi çalışır.
Ana Sayfa
Yardım
Giriş Yap
lolengine
/
lol
şunun yansıması
https://github.com/lolengine/lol
İzle
1
Yıldızla
0
Çatalla
0
Kod
Konular
0
Sürümler
0
Wiki
Aktivite
Kaynağa Gözat
Print error reports before panicking when asset loads fail.
legacy
Sam Hocevar
sam
14 yıl önce
ebeveyn
72dbe887c5
işleme
87ed8cdf52
3 değiştirilmiş dosya
ile
15 ekleme
ve
0 silme
Görünümü Böl
Diff Seçenekleri
İstatistikleri Göster
Yama Dosyasını İndir
Diff Dosyasını İndir
+3
-0
src/font.cpp
+9
-0
src/sample.cpp
+3
-0
src/tileset.cpp
+ 3
- 0
src/font.cpp
Dosyayı Görüntüle
@@ -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
Dosyayı Görüntüle
@@ -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
Dosyayı Görüntüle
@@ -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);
}
Yaz
Önizleme
Yükleniyor…
İptal
Kaydet