Skip to content

Commit

Permalink
LibGfx: Fix inconsistent skia includes
Browse files Browse the repository at this point in the history
The "include/" #include prefix is not used anywhere else in the
codebase, and does not work with distro packages.
  • Loading branch information
fgaz authored and kalenikaliaksandr committed Sep 8, 2024
1 parent 0a482e1 commit 7af940d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Userland/Libraries/LibGfx/Font/TypefaceSkia.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@

#include <core/SkData.h>
#include <core/SkFontMgr.h>
#include <include/core/SkRefCnt.h>
#include <include/core/SkTypeface.h>
#include <core/SkRefCnt.h>
#include <core/SkTypeface.h>
#ifndef AK_OS_ANDROID
# include <ports/SkFontMgr_fontconfig.h>
#else
Expand Down

0 comments on commit 7af940d

Please sign in to comment.