mirror of
https://github.com/TomHarte/CLK.git
synced 2024-11-22 12:33:29 +00:00
Strip this forceinline until I've satisfied myself that it works in declarations.
This commit is contained in:
parent
34794223b4
commit
a7051e4e42
@ -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);
|
||||
|
@ -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_;
|
||||
|
Loading…
Reference in New Issue
Block a user