Skip to content

Commit

Permalink
Disable -O3 optimization
Browse files Browse the repository at this point in the history
  • Loading branch information
threedeyes committed Apr 1, 2018
1 parent 618c962 commit d3cc1df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile.Translator
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ CC := g++
LD := $(CC)

LIBS := -lbe -ltranslation -ltracker -ldjvulibre
CFLAGS := -O3 -I./Includes
CFLAGS := -O0 -I./Includes
LDFLAGS :=

.PHONY : clean Build
Expand Down
2 changes: 1 addition & 1 deletion Src/DjVuTranslator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ TranslatorView::TranslatorView(BRect rect, const char *name) :
r.bottom = r.top + fh.ascent + fh.descent;
r.right = r.left + Bounds().right;

BStringView *libre = new BStringView(r, "BasedOn", "Based on djvulibre 3.5.25 library");
BStringView *libre = new BStringView(r, "BasedOn", "Based on djvulibre library");
libre->SetFont(be_plain_font);
AddChild(libre);
}
Expand Down

0 comments on commit d3cc1df

Please sign in to comment.