diff --git a/desktop/text.cpp b/desktop/text.cpp index 2cb2879..6ae9b9c 100644 --- a/desktop/text.cpp +++ b/desktop/text.cpp @@ -331,7 +331,7 @@ int32_t FontGetDescent(Font *font) { int32_t FontGetEmWidth(Font *font) { if (font->type == FONT_TYPE_BITMAP) { const BitmapFontHeader *header = (const BitmapFontHeader *) font->bitmapData; - return header->xEmWidth * FREETYPE_UNIT_SCALE; + return header->xEmWidth; } #ifdef USE_FREETYPE_AND_HARFBUZZ diff --git a/help/Notes from Discord.txt b/help/Notes from Discord.txt index 3ee241c..c97e671 100644 --- a/help/Notes from Discord.txt +++ b/help/Notes from Discord.txt @@ -347,3 +347,11 @@ EsPanelBand columns[2] = { { .push = 3 }, /* column 2 */ }; EsPanelSetBands(panel, 2 /* number of columns */, 0, &columns); + += On the use of GS in the kernel = + +nakst + — +Today at 8:57 AM +[gs:0] points to the CPULocalStorage, [gs:8] contains the address of the kernel stack (so it can be switched to in a syscall), [gs:16] points to the current thread +You can't get the thread from the CPULocalStorage in most situations (i.e. with interrupts enabled), because it will change if the thread is rescheduled on a different CPU, and then you'd read the wrong thread diff --git a/res/Fonts/Bitmap Sans Bold 9.font b/res/Fonts/Bitmap Sans Bold 9.font index 03f0bb6..f9c3c19 100644 Binary files a/res/Fonts/Bitmap Sans Bold 9.font and b/res/Fonts/Bitmap Sans Bold 9.font differ