このサイトはJavaScriptを使用しています
ホーム
ヘルプ
サインイン
lolengine
/
lol
ミラー元
https://github.com/lolengine/lol
ウォッチ
1
スター
0
フォーク
0
コード
課題
0
リリース
0
Wiki
アクティビティ
ソースを参照
Print error reports before panicking when asset loads fail.
legacy
Sam Hocevar
sam
14年前
親
72dbe887c5
コミット
87ed8cdf52
3個のファイルの変更
、
15行の追加
、
0行の削除
分割表示
差分オプション
統計情報を表示
Patchファイルをダウンロード
Diffファイルをダウンロード
+3
-0
src/font.cpp
+9
-0
src/sample.cpp
+3
-0
src/tileset.cpp
+ 3
- 0
src/font.cpp
ファイルの表示
@@ -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
ファイルの表示
@@ -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
ファイルの表示
@@ -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);
}
書き込み
プレビュー
読み込み中…
キャンセル
保存