1
0
mirror of https://github.com/TomHarte/CLK.git synced 2024-07-04 18:29:40 +00:00

Strip this forceinline until I've satisfied myself that it works in declarations.

This commit is contained in:
Thomas Harte 2020-11-18 21:06:18 -05:00
parent 34794223b4
commit a7051e4e42
2 changed files with 2 additions and 2 deletions

View File

@ -345,7 +345,7 @@ bool VideoBase::get_composite_is_colour() {
// MARK: - Outputters.
forceinline uint16_t *VideoBase::output_char(uint16_t *target, uint8_t source, int row) const {
uint16_t *VideoBase::output_char(uint16_t *target, uint8_t source, int row) const {
const int character = source & character_zones_[source >> 6].address_mask;
const uint8_t xor_mask = character_zones_[source >> 6].xor_mask;
const std::size_t character_address = size_t(character << 3) + (row & 7);

View File

@ -85,7 +85,7 @@ class VideoBase: public Apple::II::VideoSwitches<Cycles> {
uint16_t *output_text(uint16_t *target, int start, int end, int row) const;
uint16_t *output_double_text(uint16_t *target, int start, int end, int row) const;
forceinline uint16_t *output_char(uint16_t *target, uint8_t source, int row) const;
uint16_t *output_char(uint16_t *target, uint8_t source, int row) const;
// Super high-res per-line state.
uint8_t line_control_;